cody - HTMLify profile

cody
4270 Files
633453 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/128 - Bingo Card Generator
.clear {
width: 100%;
clear: both;
}
.card {
float: left;
width: 100%;
clear: both;
}
.card {
float: left;
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Bingo Card</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Bingo Card</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
# Bingo Card Generator
> This is a Bingo Card Generator using HTML, CSS, and JS.
It's an application which generates a unique Bingo Card every time you click on the button and with this generated Card You can enjoy Bingo game with your friends.
---
## Tech Stack Used:
HTML5,CSS,Javascript
> This is a Bingo Card Generator using HTML, CSS, and JS.
It's an application which generates a unique Bingo Card every time you click on the button and with this generated Card You can enjoy Bingo game with your friends.
---
## Tech Stack Used:
HTML5,CSS,Javascript
function genNum() {
$b = Math.floor((Math.random()) * (15 - 1)) + 1;
$i = Math.floor((Math.random()) * (30 - 16)) + 16;
$n = Math.floor((Math.random()) * (45 - 31)) + 31;
$g = Math.floor((Math.random()) * (60 - 46)) + 46;
$o = Math.floor((Math.random()) * (75 - 61)) + 61;
}
$b = Math.floor((Math.random()) * (15 - 1)) + 1;
$i = Math.floor((Math.random()) * (30 - 16)) + 16;
$n = Math.floor((Math.random()) * (45 - 31)) + 31;
$g = Math.floor((Math.random()) * (60 - 46)) + 46;
$o = Math.floor((Math.random()) * (75 - 61)) + 61;
}